time.Time.nsec (method)
20 uses
time (current package)
time.go#L165: func (t *Time) nsec() int32 {
time.go#L256: return ts > us || ts == us && t.nsec() > u.nsec()
time.go#L266: return ts < us || ts == us && t.nsec() < u.nsec()
time.go#L278: tc, uc = int64(t.nsec()), int64(u.nsec())
time.go#L299: return t.sec() == u.sec() && t.nsec() == u.nsec()
time.go#L456: return t.sec() == 0 && t.nsec() == 0
time.go#L599: return int(t.nsec())
time.go#L858: nsec := t.nsec() + int32(d%1e9)
time.go#L897: d := Duration(t.sec()-u.sec())*Second + Duration(t.nsec()-u.nsec())
time.go#L946: return Date(year+years, month+Month(months), day+days, hour, min, sec, int(t.nsec()), t.Location())
time.go#L1202: return t.unixSec()*1e3 + int64(t.nsec())/1e6
time.go#L1211: return t.unixSec()*1e6 + int64(t.nsec())/1e3
time.go#L1221: return (t.unixSec())*1e9 + int64(t.nsec())
time.go#L1252: nsec := t.nsec()
time.go#L1562: nsec := t.nsec()
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |